home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Modules / protos / regexmodule_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  954 b   |  17 lines

  1.  
  2. /* regexmodule.c */
  3. static void reg_dealloc ( regexobject *re );
  4. static PyObject *makeresult ( struct re_registers *regs );
  5. static PyObject *reg_match ( regexobject *re , PyObject *args );
  6. static PyObject *reg_search ( regexobject *re , PyObject *args );
  7. static PyObject *reg_group ( regexobject *re , PyObject *args );
  8. static PyObject *reg_getattr ( regexobject *re , char *name );
  9. static PyObject *newregexobject ( PyObject *pattern , PyObject *translate , PyObject *givenpat , PyObject *groupindex );
  10. static PyObject *regex_compile ( PyObject *self , PyObject *args );
  11. static PyObject *symcomp ( PyObject *pattern , PyObject *gdict );
  12. static PyObject *regex_symcomp ( PyObject *self , PyObject *args );
  13. static int update_cache ( PyObject *pat );
  14. static PyObject *regex_match ( PyObject *self , PyObject *args );
  15. static PyObject *regex_search ( PyObject *self , PyObject *args );
  16. static PyObject *regex_set_syntax ( PyObject *self , PyObject *args );
  17.